742eb0a64a49b6fb10d0e2485785394e2dbbe533,OsmAnd/src/net/osmand/plus/dashboard/DashUpdatesFragment.java,DashUpdatesFragment,updatedDownloadsList,#List#,33

Before Change


			}
			LayoutInflater inflater = getActivity().getLayoutInflater();
			View view = inflater.inflate(R.layout.dash_updates_item, null, false);
			String eName = item.getVisibleDescription(getMyApplication()) + "\n"
					+ item.getVisibleName(getMyApplication(), getMyApplication().getResourceManager().getOsmandRegions());
			String d = item.getDate(getMyApplication().getResourceManager().getDateFormat()) + "\n" + item.getSizeDescription(getMyApplication());
			((TextView) view.findViewById(R.id.map_name)).setText(eName);
			((TextView) view.findViewById(R.id.map_descr)).setText(d);

After Change


			}
			LayoutInflater inflater = getActivity().getLayoutInflater();
			View view = inflater.inflate(R.layout.dash_updates_item, null, false);
			String name = item.getVisibleName(getMyApplication(), getMyApplication().getResourceManager().getOsmandRegions());
			String d = item.getDate(getMyApplication().getResourceManager().getDateFormat()) + ", " + item.getSizeDescription(getMyApplication());
			String eName = name.replace("\n", " ");
			((TextView) view.findViewById(R.id.map_name)).setText(eName);